home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / MCL Related / User Contributions / Conquest 1.1.sea / Conquest 1.1 / PLAYERS / rjk1-player / @load.lisp / @load.lisp
Encoding:
Text File  |  1993-02-16  |  604 b   |  32 lines  |  [TEXT/CCL2]

  1. ;;; @load.lisp
  2. ;;;
  3. ;;; CONQUEST AI PROJECT
  4. ;;;
  5. ;;; Washington University Computer Science Department
  6. ;;; Copyright 1992 Paul McCartney.  All Rights Reserved.
  7. ;;;
  8. ;;; AUTHOR: 
  9. ;;;
  10. ;;; DESCRIPTION:
  11. ;;;
  12. ;;; USE:
  13. ;;;
  14.  
  15. ;;;;
  16. ;;;; PACKAGE INFORMATION
  17. ;;;;
  18.  
  19. (defpackage :rjk1
  20.   (:use :common-lisp :ccl :conquest))
  21.  
  22. (use-package '(:rjk1) :conquest)
  23.  
  24. (def-logical-directory "rjk1" (mac-directory-namestring *loading-file-source-file*))
  25.  
  26. (load-fasl "rjk1;player-class.lisp")
  27. (load-fasl "rjk1;select-country.lisp")
  28. (load-fasl "rjk1;place-armies.lisp")
  29. (load-fasl "rjk1;attack.lisp")
  30. (load-fasl "rjk1;fortify.lisp")
  31.  
  32.